home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / FILESIZE.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  170 b   |  11 lines

  1. #include <dir.h>
  2.  
  3. long FileSize( char *filename )
  4. {
  5.     struct ffblk fb;
  6.  
  7.     if ( -1 == findfirst( filename, &fb, 0xff ) )
  8.         return( -1 );
  9.     return( fb.ff_fsize );
  10. }
  11.